The content record for the iMIS Desktop home page ships with a live connection to ASI’s Twitter feed, to demonstrate how you could add your own feeds using iParts. You can reconfigure or remove this iPart by editing the content record for the home page: @/iMIS/Desktop Home.

Here is the code to embed a Twitter feed widget within a Content Html iPart:
<script charset="utf-8" src="http://widgets.twimg.com/j/2/widget.js"></script>
<script>
new TWTR.Widget({
version: 2,
type: 'profile',
rpp: 3,
interval: 30000,
width: 'auto',
height: 300,
theme: {
shell: {
background: '#949494',
color: '#ffffff'
},
tweets: {
background: '#ffffff',
color: '#333333',
links: '#1a5fa3'
}
},
features: {
scrollbar: false,
loop: false,
live: false,
behavior: 'all'
}
}).render().setUser('advsol').start();
</script>